home *** CD-ROM | disk | FTP | other *** search
- Q33821 Warning C4093 Generated Incorrectly
- C Compiler
- 5.10 | 5.10
- MS-DOS | OS/2
-
- Summary:
- The code fragment below generates warning C4093: "unescaped
- newline in character constant in non-active code" when it is compiled
- with warning level 3 (/W3). This warning is not generated with Version
- 5.00 of the C compiler.
- Microsoft has confirmed this to be a problem in Version 5.10
- of the C compiler. We are researching this problem and will post new
- information as it becomes available.
- The warning will not affect code generation; it can be ignored.
- The following code fragment demonstrates this problem:
-
- char *t()
- {
- #ifdef NOTDEFINED
- return "\"";
- #endif
- return "\"";
- }
-
-
- Keywords: buglist5.10
- Updated 88/08/09 05:59
-